From: Richard M. Stallman Date: Mon, 13 Nov 1995 05:06:14 +0000 (+0000) Subject: Declare calloc like malloc. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~85535 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6441db6b0bb66fcd588c1a0ec0b17f2fbefb5640;p=emacs.git Declare calloc like malloc. --- diff --git a/src/m/alpha.h b/src/m/alpha.h index 50a6a68b885..f4579dfe663 100644 --- a/src/m/alpha.h +++ b/src/m/alpha.h @@ -231,12 +231,12 @@ NOTE-END #ifdef _MALLOC_INTERNAL /* These declarations are designed to match the ones in gmalloc.c. */ #if defined (__STDC__) && __STDC__ -extern void *malloc (), *realloc (); +extern void *malloc (), *realloc (), *calloc (); #else -extern char *malloc (), *realloc (); +extern char *malloc (), *realloc (), *calloc (); #endif #else /* not _MALLOC_INTERNAL */ -extern void *malloc (), *realloc (); +extern void *malloc (), *realloc (), *calloc (); #endif /* not _MALLOC_INTERNAL */